home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 25 / AMIGAplus Sonderheft 25 (2000)(Falke)(DE)(Track 1 of 4)[!].iso / PublicDomain / Anwendungen / LimitWhite / Source / Peripherel.C < prev    next >
Text File  |  2000-01-11  |  1KB  |  29 lines

  1. /* ------------------------------------------------------------------------------------------------------------ */
  2. /*                                                                                                              *
  3.  *   LimitWhite V1.0 Peripherel Functions
  4.  *                                                                                                              */
  5. /* ------------------------------------------------------------------------------------------------------------ */
  6.  
  7. void DoEasyReq(const char *message);
  8.  
  9. /* ------------------------------------------------------------------------------------------------------------ */
  10.  
  11. void DoEasyReq(const char *message)
  12. {
  13.     /* EasyRequest() with the message 'message' */
  14.  
  15.     struct EasyStruct req = {
  16.         sizeof(struct EasyStruct),
  17.         0,
  18.         "LimitWhite V1.0",
  19.         (UBYTE *)message,
  20.         "OK!"
  21.     };
  22.  
  23.     EasyRequest(NULL, &req, NULL, NULL);
  24. } /* DoEasyReq() */
  25.  
  26. /* ------------------------------------------------------------------------------------------------------------ */
  27.  
  28. /* End Of Text */
  29.